/* Reset básico */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

/* Contenedor principal */
.page-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Encabezados */
header h1 {
  text-align: center;
  font-size: 2.8em;
  color: #003366;
  margin-top: 20px;
}

h2 {
  text-align: center;
  font-size: 2.2em;
  color: #0072c6;
  margin-bottom: 20px;
}

p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Tarjetas de servicios */
.cards-showcase {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.card-item {
  flex: 1 1 300px;
  padding: 30px 20px;
  border-radius: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Colores de las tarjetas */
.card1 {
  background: linear-gradient(135deg, #ff7f50, #ff6347); /* Coral / Naranja */
}
.card2 {
  background: linear-gradient(135deg, #1e90ff, #00bfff); /* Azul */
}
.card3 {
  background: linear-gradient(135deg, #ff1493, #ff69b4); /* Rosa */
}

.card-item h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.card-item p {
  font-size: 1em;
  line-height: 1.5;
}

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Beneficios */
.benefits {
  background: linear-gradient(135deg, #ffe066, #ff9f1c); /* Amarillo/Naranja */
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  color: #003366;
}

.benefits h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
}

.benefits ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.benefits ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Botón volver */
.btn-remesas {
  display: inline-block;
  background: linear-gradient(90deg, #32cd32, #1e7f1e); /* Verde degradado */
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform 0.2s, background 0.3s;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.btn-remesas:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #1e7f1e, #32cd32);
}

/* Footer */
footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
